home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / rtdc.zip / RTREGDC.PAS < prev    next >
Pascal/Delphi Source File  |  1995-09-03  |  747b  |  29 lines

  1. {  Tomasz Stanczak                                                   }
  2. {  Hardenbergstr. 8                                                  }
  3. {  31275 Lehrte                                                      }
  4. {  Germany                                                           }
  5. {                                                                    }
  6. {  CIS ID: 100735,3273                                               }
  7.  
  8. unit RtRegDC;
  9.  
  10. interface
  11.  
  12. uses
  13.    Classes;
  14.  
  15. procedure Register;
  16.  
  17. implementation
  18.  
  19. uses
  20.     TypInfo, DsgnIntf, RtDbCopy, RtDCEdit;
  21.  
  22. procedure Register;
  23. begin
  24.    RegisterComponents('RiT',[TRtDbCopy]);
  25.    RegisterPropertyEditor(TypeInfo(TStrings),TRtDbCopy,'Mappings',TFieldMapProperty);
  26. end;
  27.  
  28. end.
  29.